home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_03 / 1103018a < prev    next >
Encoding:
Text File  |  1995-11-01  |  165 b   |  9 lines

  1. /* ctime function */
  2. #include <time.h>
  3.  
  4. char *(ctime)(const time_t *tod)
  5.     {    /* convert calendar time to local text */
  6.     return (asctime(localtime(tod)));
  7.     }
  8.  
  9.